home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 1996 June
/
Software of the Month Club 1996 June.iso
/
pc
/
os2
/
utility
/
clock
/
debug.h
< prev
next >
Wrap
Text File
|
1996-02-21
|
1KB
|
35 lines
/******************************************************************** DEBUG.H
* *
* Debugging Aids *
* *
****************************************************************************/
#ifndef DEBUG_H
#define DEBUG_H
#include "hrtimer.h"
extern HFILE Timer ;
extern BOOL Trace ;
extern VOID Debug ( HWND hwnd, char *Message, ... ) ;
extern VOID Log ( char *Message, ... ) ;
extern BOOL OpenTimer ( VOID ) ;
extern VOID CloseTimer ( VOID ) ;
extern BOOL GetTime ( PTIMESTAMP pts ) ;
extern ULONG ComputeElapsedTime ( PTIMESTAMP ptsStart, PTIMESTAMP ptsStop, PULONG pulNs ) ;
extern PVOID AllocateMemory ( ULONG ByteCount ) ;
extern VOID FreeMemory ( PVOID Memory ) ;
extern ULONG APIENTRY ExceptionHandler
(
PEXCEPTIONREPORTRECORD pExceptionReportRecord,
PEXCEPTIONREGISTRATIONRECORD pExceptionRegistrationRecord,
PCONTEXTRECORD pContextRecord,
PVOID pDispatcherContext
) ;
#endif